home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / g_scenar / gp2set31.zip / 96.BAT < prev    next >
DOS Batch File  |  1996-10-14  |  3KB  |  101 lines

  1. rem Installation file of The Grandprix 2 1996 Carset v3.1 --------
  2. rem         ⌐1996 PK Arnall, Pieter van Dieren.
  3.  
  4. @echo off
  5. cls
  6. echo.
  7. echo This batch file will install the 1996 Carset v3.1.
  8. echo.
  9. echo The carset will change GP2.EXE!
  10. echo If you don't want to continue now, press CTRL-BREAK.
  11. echo.
  12. echo Read readme.txt for more information
  13. echo.
  14. pause
  15. cls
  16.  
  17. rem Checking if the files are in the right directory ------------
  18.  
  19. cd..
  20. if not exist gp2.exe goto wrong_dir
  21.  
  22. rem Creating the new cars and helmets ----------------------------
  23.  
  24. cd gamejams
  25.  
  26. GP2JAM -y -bferrari.BMP  -jwilliams.JAM   
  27. GP2JAM -y -bbenetton.BMP -jtyrrell.JAM 
  28. GP2JAM -y -bwilliams.BMP -jbenetton.JAM     
  29. GP2JAM -y -bmclaren.BMP  -jmclaren.JAM 
  30. GP2JAM -y -bligier.BMP   -jfootwork.JAM 
  31. GP2JAM -y -bjordan.BMP   -jlotus.JAM 
  32. GP2JAM -y -bsauber.BMP   -jjordan.JAM       
  33. GP2JAM -y -bfootwork.BMP -jlarrous.JAM 
  34. GP2JAM -y -btyrrell.BMP  -jminardi.JAM 
  35. GP2JAM -y -bminardi.BMP  -jligier.JAM       
  36. GP2JAM -y -bforti.BMP    -jferrari.JAM 
  37. GP2JAM -y -balfa.BMP     -jsauber.JAM    
  38. GP2JAM -y -bdome.BMP     -jsimtek.JAM    
  39. GP2JAM -y -bstewart.BMP  -jpacific.JAM
  40. GP2JAM -y -bcs31helm.BMP -jhelmets1.JAM 
  41.  
  42.  
  43. rem Creating the carset-directory and copying files --------------
  44.  
  45. cd ..\bitmaps
  46. if not exist cpitl_96.pcx rename cpitlow.pcx cpit_org.pcx
  47. if exist cpitl_96.pcx rename cpitl_96.pcx cpit_org.pcx
  48.  
  49. cd ..\gpsaves
  50. md 96carset
  51. move ..\bitmaps\cpit_org.pcx  .\96carset
  52. move ..\gamejams\96cs31.raa   .\96carset
  53. move ..\gamejams\96cs31.nam   .\96carset
  54. move ..\gamejams\readme.txt   .\96carset
  55. move ..\gamejams\cpitlow.pcx  ..\bitmaps
  56.  
  57.  
  58. rem Patching GP2.EXE ---------------------------------------------
  59.  
  60. move ..\gamejams\gp2ccpe.exe ..\
  61. move ..\gamejams\gp2ccpe.txt ..\
  62. move ..\gamejams\gp2pit.exe  ..\
  63. move ..\gamejams\gp2pit.txt  ..\
  64. move ..\gamejams\96cs31.ccp  ..\
  65. move ..\gamejams\96cs31f.ccp ..\
  66. move ..\gamejams\96rand.ccp  ..\
  67. move ..\gamejams\96randf.ccp ..\
  68. move ..\gamejams\96cs31.pit  ..\
  69.  
  70. cd..
  71. gp2ccpe p 96cs31.ccp
  72.  
  73. gp2pit p 96cs31.pit
  74. cd gpsaves\96carset
  75.  
  76. goto ready
  77.  
  78. :wrong_dir
  79. echo You did not copy the files to the right directory!
  80. echo Read README.TXT how to install the 1996 carset.
  81. echo.
  82. goto end
  83.  
  84. :ready
  85. cls
  86. echo.
  87. echo All files are now installed!
  88. echo.
  89. echo All you have to do now is load the race "96CS31.RAA"
  90. echo into the game to activate the drivers names, car numbers
  91. echo and cockpit colors.
  92. echo When you have done that, close the game with saving
  93. echo the changes switched on.
  94. echo.
  95. echo.
  96. echo Read README.TXT for more information.
  97. echo.
  98. echo Have a great race!
  99. echo.
  100.  
  101. :end